#fullpage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.betting {
    text-align: center;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 10px;
    width: 50%;
}

.player1 {
    text-align: center;
    background: #e0e0e0;
    padding: 10px;
    border-radius: 10px;
    width: 50%;
}

.players-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 80%;
}

.player2, .player3, .player4 {
    text-align: center;
    background: #d0d0d0;
    padding: 10px;
    border-radius: 10px;
    width: 30%;
}

.pot {
    text-align: center;
    background: #c0c0c0;
    padding: 10px;
    border-radius: 10px;
    width: 50%;
}

.dice {
    width: 100px;
    height: 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;
    align-items: center;
    background-color: #fff;
    border: 3px solid #333;
    border-radius: 10px;
    font-size: 2em;
    font-weight: bold;
    margin: 20px;
    transition: transform 1s ease-in-out;
  }

#dice {
    display:none;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: black;
}


.dot1, .dot2, .dot3, .dot4, .dot5, .dot6, .dot7 {
    display: none;
}